@media (prefers-reduced-motion: no-preference) {
  * {
    scroll-behavior: smooth;
  }
}

* {
  padding: 0;
  margin: 0;
  color: #e0e0e0;
  font-family: Verdana, sans-serif;
}

html {
  background: #292929;
  border-left: 20px solid black;
  border-right: 20px solid black;
  scroll-padding-top: 60px;
}

#navbar, footer {
  background-color: black;
  margin: 0;
  top: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0;
}

#navbar {
  position: sticky;
  z-index: 1;
}

#navbar ul, footer ul {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-evenly;
}

a {
  text-decoration: none;
}

a:hover {
  color: red;
}

a:active {
  color: cyan;
}

main {
  text-align: center;
}

#welcome-section {
  font-size: 10pt;
  padding: 150px 0 150px 0;
}

h1 {
  font-size: 45pt;
  font-family: "Rubik Glitch", Impact;
  color: white;
  text-shadow: -5px 0 10px #FF0000, 5px 0 10px #00FFFF;
}

h2 {
  font-style: italic;
  margin: -5px 0 200px 0;
}

h3 {
  color: white;
}

h4 {
  margin-top: 10px;
}

#HTML5 {
  color: #ff4d4d;
}

#CSS {
  color: #3dcccc;
}

#wrapper {
  display: flex;
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

#about-me {
  flex: 75%;
  margin: 0 10px;
}

#about-me p {
  text-align: justify;
  margin: 20px 0;
}

#tools {
  flex: 25%;
  margin: 0 10px;
}

table {
  margin: 40px auto;
  width: 90%;
  max-width: 1280px;
}

td {
  width: 40%;
  padding: 0 40px 20px 40px;
  text-align: center;
}

td img {
  width: 100%;
  border-radius: 5%;
}